* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    color: #2a2a2a;
    overflow-x: hidden;
}



/* Hero Banner - Matching Original Style */
.about-banner {
    background: #fafafa;
    padding: 200px 0 140px;
    position: relative;
    overflow: hidden;
}

.about-banner::after {
    content: '';
    background-image: url(data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 193 467'%3E%3Cpath d='M0,50 Q50,0 100,50 T200,50 L200,467 L0,467 Z' fill='%23f0f9ff' opacity='0.5'/%3E%3C/svg%3E);
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 100px;
    width: 193px;
    height: 467px;
    opacity: 0.3;
}

.about-banner::before {
    content: '';
    background-image: url(data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 98 290'%3E%3Cpath d='M0,0 L98,0 L98,290 Q50,250 0,290 Z' fill='%23ffe6e6' opacity='0.5'/%3E%3C/svg%3E);
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    top: 100px;
    width: 98px;
    height: 290px;
    opacity: 0.3;
}

.about-banner .left-content h6 {
    text-transform: uppercase;
    font-size: 18px;
    color: #fe3f40;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-banner .left-content h2 {
    font-size: 50px;
    font-weight: 700;
    color: #2a2a2a;
    line-height: 68px;
    margin-bottom: 20px;
}

.about-banner .left-content h2 em {
    color: #03a4ed;
    font-style: normal;
}

.about-banner .left-content h2 span {
    color: #fe3f40;
}

.about-banner .left-content p {
    font-size: 15px;
    line-height: 30px;
    color: #2a2a2a;
    margin-bottom: 25px;
}

.about-banner .right-image img {
    max-width: 100%;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Section Styles */
section {
    padding: 120px 0;
}

.section-heading h2 {
    font-size: 30px;
    text-transform: capitalize;
    color: #2a2a2a;
    font-weight: 700;
    letter-spacing: 0.25px;
    line-height: 44px;
    margin-bottom: 20px;
}

.section-heading h2 em {
    font-style: normal;
    color: #03a4ed;
}

.section-heading h2 span {
    color: #fe3f40;
}

.section-heading p {
    font-size: 15px;
    line-height: 30px;
    color: #2a2a2a;
}

/* Stats Section - Like Original Services */
.stats-section {
    background: #fafafa;
    padding: 80px 0;
}

.stat-item {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.15);
}

.stat-item .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(105deg, rgba(255, 77, 30, 1) 0%, rgba(255, 44, 109, 1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: #fff;
}

.stat-item h3 {
    font-size: 40px;
    font-weight: 700;
    color: #03a4ed;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 15px;
    color: #2a2a2a;
    margin: 0;
    font-weight: 500;
}

/* What We Offer - Portfolio Style */
.offer-section {
    background: #fff;
    padding: 80px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 15px;
}

.section-heading h2 em {
    font-style: normal;
    color: #03a4ed;
}

.section-heading h2 span {
    color: #fe3f40;
}

.section-heading p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.offer-container {
    background: #fff;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.offer-card {
    background: #fafafa;
    border-radius: 20px;
    padding: 40px;
    margin: 15px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: calc(100% - 30px);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #03a4ed 0%, #fe3f40 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.offer-card:hover {
    background: #fff;
    border-color: #03a4ed;
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(3, 164, 237, 0.15);
}

.offer-card:hover::before {
    transform: scaleX(1);
}

.offer-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #03a4ed 0%, #0284c7 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.offer-card:hover .offer-icon {
    background: linear-gradient(135deg, #fe3f40 0%, #ff4d61 100%);
    transform: rotate(10deg) scale(1.1);
}

.offer-icon i {
    font-size: 36px;
    color: #fff;
}

.offer-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.offer-card:hover h4 {
    color: #03a4ed;
}

.offer-card p {
    font-size: 15px;
    line-height: 26px;
    color: #666;
    margin: 0;
    flex-grow: 1;
}

.offer-badge {
    display: inline-block;
    background: linear-gradient(90deg, #03a4ed 0%, #fe3f40 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Add negative margin to row to compensate for card margins */
.offer-container .row {
    margin-left: -15px;
    margin-right: -15px;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .offer-container {
        padding: 40px 35px;
    }
}

@media (max-width: 991px) {
    .offer-container {
        padding: 40px 30px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .offer-card {
        padding: 35px;
        margin: 12px;
        height: calc(100% - 24px);
    }
}

@media (max-width: 767px) {
    .offer-section {
        padding: 50px 0;
    }

    .offer-container {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .section-heading h2 {
        font-size: 26px;
    }

    .section-heading p {
        font-size: 14px;
    }

    .offer-card {
        padding: 30px;
        margin: 10px;
        height: calc(100% - 20px);
    }

    .offer-icon {
        width: 70px;
        height: 70px;
    }

    .offer-icon i {
        font-size: 32px;
    }

    .offer-card h4 {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .offer-container {
        padding: 25px 15px;
    }

    .offer-card {
        padding: 25px;
        margin: 8px;
        height: calc(100% - 16px);
    }

    .offer-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 20px;
    }

    .offer-icon i {
        font-size: 28px;
    }

    .offer-card h4 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .offer-card p {
        font-size: 14px;
        line-height: 24px;
    }

    .offer-badge {
        font-size: 11px;
        padding: 5px 14px;
        margin-top: 15px;
    }
}

/* Why Choose Section */
.why-choose-section {
    background: #fafafa;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(10px);
}

.feature-item .number {
    min-width: 60px;
    height: 60px;
    background: linear-gradient(105deg, rgba(3, 164, 237, 1) 0%, rgba(254, 63, 64, 1) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.feature-item .content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 10px;
}

.feature-item .content p {
    font-size: 15px;
    line-height: 26px;
    color: #2a2a2a;
    margin: 0;
}

/* Team Section - Blog Style */
.team-section {
    background: #fff;
}

.founder-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.15);
}

.founder-card .image-section {
    height: 400px;
    background: linear-gradient(135deg, #03a4ed 0%, #0284c7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.founder-card .image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 2;
}

.founder-card .image-section::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    z-index: 1;
}

.founder-card .image-section::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -30px;
    left: -30px;
    z-index: 1;
}

.founder-card .info-section {
    padding: 40px;
}

.founder-card .info-section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.founder-card .info-section ul li {
    display: inline-block;
    font-size: 15px;
    color: #afafaf;
    font-weight: 300;
    margin-right: 20px;
}

.founder-card .info-section ul li i {
    color: #ff4d61;
    font-size: 16px;
    margin-right: 8px;
}

.founder-card .info-section h4 {
    font-size: 28px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 10px;
}

.founder-card .info-section .role {
    font-size: 16px;
    color: #fe3f40;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.founder-card .info-section p {
    font-size: 15px;
    line-height: 28px;
    color: #2a2a2a;
}

/* Contact Details Styling */
.contact-details {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 12px;
    background: #fafafa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #f0f9ff;
    transform: translateX(5px);
}

.contact-item i {
    font-size: 18px;
    color: #fe3f40;
    min-width: 20px;
}

.contact-item a {
    color: #2a2a2a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #03a4ed;
}

/* Responsive Design */
@media (max-width: 991px) {
    .founder-card .image-section {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .founder-card .image-section {
        height: 300px;
    }

    .founder-card .info-section {
        padding: 30px;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Footer */
footer {
    background-color: #fafafa;
    padding: 45px 0;
    text-align: center;
}

footer p {
    color: #2a2a2a;
    margin: 0;
    font-size: 15px;
    line-height: 30px;
}

footer p a {
    color: #fe3f40;
    text-decoration: none;
}

/* Social Icons - Original Style */
.footer {
    background-color: white;
    padding: 15px 20px;
    text-align: center;
    border-top: 1px solid white;
}

.copyright-text {
    color: #333;
    font-size: 14px;
    margin: 0;
    padding: 5px 0;
}

.designer-text {
    color: #333;
    font-size: 14px;
    margin: 0;
    padding: 5px 0;
}

.designer-name {
    color: #ff3e3e;
    text-decoration: none;
    font-weight: 500;
}

.designer-name:hover {
    text-decoration: underline;
}


/* Floting Social Media Icons */
.social-icons-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    background-color: white;
    /* Background color */
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    /* Allow wrapping on smaller screens */
    justify-content: center;
    align-items: center;
    gap: 20px;
    /* Modern gap between icons */
}

.social-icons a {
    color: inherit;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-icons a:hover {
    transform: translateY(-5px);
    opacity: 0.8;
}

.social-icons a i {
    font-size: 2rem;
    /* Base size */
}

@media (max-width: 576px) {
    .social-icons {
        gap: 15px;
    }

    .social-icons a i {
        font-size: 1.5rem;
    }
}

@media (max-width: 375px) {
    .social-icons {
        gap: 10px;
    }

    .social-icons a i {
        font-size: 1.25rem;
    }
}


/* Responsive */
@media (max-width: 991px) {
    .header-area .nav {
        display: none;
    }

    .about-banner {
        padding: 150px 0 80px;
        text-align: center;
    }

    .about-banner .left-content h2 {
        font-size: 36px;
        line-height: 50px;
    }

    .about-banner .right-image {
        margin-top: 40px;
    }

    section {
        padding: 80px 0;
    }

    .section-heading {
        text-align: center;
        margin-bottom: 40px;
    }

    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .about-banner .left-content h2 {
        font-size: 28px;
        line-height: 40px;
    }

    .stat-item h3 {
        font-size: 32px;
    }

    .social-icons a i {
        font-size: 1.5rem;
    }
}